home *** CD-ROM | disk | FTP | other *** search
- Boolean Plugin 1.1
- Author: Francis Lessard
- Mac-X- Software
- http://www.mac-x-software.com
-
- Boolean Plugin is a Plugin for REALbasic give you more functionality with Boolean Properties.
-
- --------------------------------------------------------------------
- Bstr(Value as Boolean) as String
- This fonction use to get a string of booelan.
- Return "true" or "false"
- --------------------------------------------------------------------
- BstrNum(Value as Boolean) as String
- This fonction use to get a string of booelan.
- Return "1" for true
- Return "0" for false
- --------------------------------------------------------------------
- strB(Value as string) as Boolean
- This fonction use to get a boolean from string.
-
- ex:
- Dim e as boolean
- e = strB("1")
- e = strB("0")
- e = strB("true")
- e = strB("false")
- --------------------------------------------------------------------
- intB(Value as integer) as Boolean
- This fonction use to get a boolean from integer.
-
- ex:
- Dim e as boolean
- e = strB(1)
- e = strB(0)
- --------------------------------------------------------------------
- Bint(Value as Boolean) as integer
- This fonction use to get a integer from boolean.
-
- ex:
- Dim e as integer
- e = strB(true)
- e = strB(false)
-
-
-